>is there a simple way to generate pitch bend? i have created 53 step
>tunings, but the alphavet only has so many letters. i have to start
>typing weird characters... i solved this by transposing the symbol
>sequences, and by defining shorter tunings in series, but this seems
>like an unnecessary roundabout. suppose i want to generate a sequence of
>200 beeps, 1/16 long, and run a pitch bend ramp which increases 1000
>midi cents in increments of 5. do i have to go the tuning way?
There would be 200 steps in 10 semitones. For 12 semitones you
need 240 steps. Define octave of 240 steps. To build symbols
(defun make-symbol-ramp (base n)
(let (out)
(dotimes (i n)
(push (intern (string (code-char (+ base i)))) out))
(nreverse out)))
(make-symbol-ramp 40 100)
--> (\( \) * + \, - \. / \0 \1 \2 \3 \4 \5 \6 \7 \8 \9 \: \; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \\ ] ^ _ \` \a \b \c \d \e \f \g \h \i \j \k \l \m \n \o \p \q \r \s \t \u \v \w \x \y \z { \| } ~ \ ‰ Â Á È Ò ˆ ¸ \· \‡ \‚ \‰ \„)
Use base to set start from a proper symbol. But you are running out
of symbols when trying to get such precision. Better way to build sounds
is to use OutOfPhase. OOP is synthesis language. You can import MIDI files
and then play samples or use a software synthesizer. Makes AIFF files that